net/http.http2FrameHeader.StreamID (field)
54 uses
net/http (current package)
h2_bundle.go#L1738: StreamID uint32
h2_bundle.go#L1774: if h.StreamID != 0 {
h2_bundle.go#L1775: fmt.Fprintf(buf, " stream=%d", h.StreamID)
h2_bundle.go#L1819: StreamID: binary.BigEndian.Uint32(buf[5:]) & (1<<31 - 1),
h2_bundle.go#L2138: fh.Type, fh.StreamID,
h2_bundle.go#L2141: if fh.StreamID != fr.lastHeaderStream {
h2_bundle.go#L2144: fh.StreamID, fr.lastHeaderStream))
h2_bundle.go#L2147: return fr.connError(http2ErrCodeProtocol, fmt.Sprintf("unexpected CONTINUATION for stream %d", fh.StreamID))
h2_bundle.go#L2155: fr.lastHeaderStream = fh.StreamID
h2_bundle.go#L2184: if fh.StreamID == 0 {
h2_bundle.go#L2313: if fh.StreamID != 0 {
h2_bundle.go#L2448: if fh.StreamID != 0 {
h2_bundle.go#L2486: if fh.StreamID != 0 {
h2_bundle.go#L2551: if fh.StreamID == 0 {
h2_bundle.go#L2556: return nil, http2streamError(fh.StreamID, http2ErrCodeProtocol)
h2_bundle.go#L2610: if fh.StreamID == 0 {
h2_bundle.go#L2642: return nil, http2streamError(fh.StreamID, http2ErrCodeProtocol)
h2_bundle.go#L2749: if fh.StreamID == 0 {
h2_bundle.go#L2802: if fh.StreamID == 0 {
h2_bundle.go#L2830: if fh.StreamID == 0 {
h2_bundle.go#L2884: if pp.StreamID == 0 {
h2_bundle.go#L3221: return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, invalid}
h2_bundle.go#L3228: return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, err}
h2_bundle.go#L3261: if f.StreamID == 0 {
h2_bundle.go#L5523: if id := res.f.Header().StreamID; id > sc.maxClientStreamID {
h2_bundle.go#L5555: if sc.inGoAway && (sc.goAwayCode != http2ErrCodeNo || f.Header().StreamID > sc.maxClientStreamID) {
h2_bundle.go#L5559: return sc.countError("data_flow", http2streamError(f.Header().StreamID, http2ErrCodeFlowControl))
h2_bundle.go#L5605: if f.StreamID != 0 {
h2_bundle.go#L5620: case f.StreamID != 0: // stream-level flow control
h2_bundle.go#L5621: state, st := sc.state(f.StreamID)
h2_bundle.go#L5638: return sc.countError("bad_flow", http2streamError(f.StreamID, http2ErrCodeFlowControl))
h2_bundle.go#L5652: state, st := sc.state(f.StreamID)
h2_bundle.go#L5663: sc.closeStream(st, http2streamError(f.StreamID, f.ErrCode))
h2_bundle.go#L5808: id := f.Header().StreamID
h2_bundle.go#L5971: id := f.StreamID
h2_bundle.go#L5984: if st := sc.streams[f.StreamID]; st != nil {
h2_bundle.go#L6040: if err := sc.checkPriority(f.StreamID, f.Priority); err != nil {
h2_bundle.go#L6146: if err := sc.checkPriority(f.StreamID, f.http2PriorityParam); err != nil {
h2_bundle.go#L6149: sc.writeSched.AdjustStream(f.StreamID, f.http2PriorityParam)
h2_bundle.go#L6202: return nil, nil, sc.countError("bad_connect", http2streamError(f.StreamID, http2ErrCodeProtocol))
h2_bundle.go#L6208: return nil, nil, sc.countError("bad_connect", http2streamError(f.StreamID, http2ErrCodeProtocol))
h2_bundle.go#L6221: return nil, nil, sc.countError("bad_path_method", http2streamError(f.StreamID, http2ErrCodeProtocol))
h2_bundle.go#L9599: cs := rl.streamByID(f.StreamID, http2headerOrDataFrame)
h2_bundle.go#L9608: StreamID: f.StreamID,
h2_bundle.go#L9637: StreamID: f.StreamID,
h2_bundle.go#L9928: cs := rl.streamByID(f.StreamID, http2headerOrDataFrame)
h2_bundle.go#L9934: if f.StreamID >= neverSent {
h2_bundle.go#L9965: StreamID: f.StreamID,
h2_bundle.go#L9973: StreamID: f.StreamID,
h2_bundle.go#L9982: StreamID: f.StreamID,
h2_bundle.go#L10213: cs := rl.streamByID(f.StreamID, http2notHeaderOrDataFrame)
h2_bundle.go#L10214: if f.StreamID != 0 && cs == nil {
h2_bundle.go#L10229: StreamID: f.StreamID,
h2_bundle.go#L10242: cs := rl.streamByID(f.StreamID, http2notHeaderOrDataFrame)